﻿@import url("../css2.css");
:root {
  --color-orange: #f4821e;
  --color-black: #000;
  --color-gray: #808080;
  --color-white: #fff;
  --color-light-gray: #f2f2f2;
  --color-dark-black: #1f232b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
}

ul {
  margin-bottom: 0rem;
}

body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.top-header {
  background-color: var(--color-light-gray);
}
.top-header .btn {
  background-color: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 0;
}
.top-header ul {
  padding-left: 1rem;
}
.top-header ul li {
  margin-right: 1rem;
}
.top-header ul li a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--color-gray);
  font-weight: 400;
  transition: 0.3s all;
}
.top-header ul li a:hover {
  color: var(--color-orange);
}
.top-header ul li a i {
  margin-right: 0.3rem;
  color: var(--color-orange);
}
.top-header ul.social-media li a i {
  color: var(--color-gray);
}

header {
  height: 5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.5s;
  background-color: var(--color-white);
}
header .header-inner .menu-toggle {
  display: block;
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
  font-family: sans-serif;
  outline: medium none;
  overflow: visible;
  text-align: center;
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  z-index: 9999999;
}
header .header-inner .menu-toggle:before {
  content: attr(data-label);
  display: block;
  padding: 12px 0;
  position: absolute;
  right: 100%;
  top: 0;
  transition: color 0.2s ease 0s, opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}
header .header-inner .menu-toggle .icon-bars {
  transition: background-color 0.2s ease;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
header .header-inner .menu-toggle .icon-bars:before {
  transition: background-color 0.2s ease;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
header .header-inner .menu-toggle .icon-bars:after {
  transition: background-color 0.2s ease;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
header .header-inner .menu-toggle:focus .icon-bars {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:focus .icon-bars:before {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:focus .icon-bars:after {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:hover .icon-bars {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:hover .icon-bars:before {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:hover .icon-bars:after {
  background-color: var(--color-orange);
}
header .header-inner .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
header .header-inner .menu-toggle:active .icon-bars:before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
header .header-inner .menu-toggle:active .icon-bars:after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
header .header-inner .menu--is-revealed .menu-toggle:before {
  opacity: 0;
  visibility: hidden;
}
header .header-inner .menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
header .header-inner .menu--is-revealed .menu-toggle .icon-bars:before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
header .header-inner .menu--is-revealed .menu-toggle .icon-bars:after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
header .header-inner .icon-bars {
  position: relative;
  display: block;
  width: 32px;
  height: 2px;
  background-color: currentColor;
  background-color: var(--color-black);
}
header .header-inner .icon-bars:before {
  display: block;
  width: 32px;
  height: 2px;
  background-color: currentColor;
  background-color: var(--color-black);
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
}
header .header-inner .icon-bars:after {
  display: block;
  width: 32px;
  height: 2px;
  background-color: currentColor;
  background-color: var(--color-black);
  content: "";
  position: absolute;
  left: 0;
  top: -0.5em;
}
header .header-inner .navbar {
  padding: 0;
}
header .header-inner .navbar .navbar-brand img {
  transition: 0.3s all;
  max-width: 20rem;
}
@media screen and (max-width: 1200px) {
  header .header-inner .navbar .navbar-brand img {
    max-width: 15rem;
  }
}
@media screen and (max-width: 600px) {
  header .header-inner .navbar .navbar-brand img {
    max-width: 12rem;
  }
}
@media screen and (max-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media screen and (max-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse .shadow {
    box-shadow: none !important;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse ul {
  /*  &.navbar-nav {
      @media screen and(max-width:$lg-breakpoint) {
          margin-top: 3rem;
      }
  } */
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li {
  margin: 0 0.3rem;
}
@media screen and (min-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul li.dropstart:hover .second-dropdown-menu {
    display: block;
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
  }
}
@media screen and (min-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul li:hover .first-dropdown-menu {
    display: block;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li .nav-link {
  padding: 1.6rem 0.6rem;
}
@media screen and (max-width: 1200px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul li .nav-link {
    padding: 0.5rem 0rem;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li a {
  color: var(--color-black);
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.3s all;
}
@media screen and (max-width: 600px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul li a {
    font-size: 1rem;
    padding: 0.4rem;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li a:hover {
  color: var(--color-orange);
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li a.active {
  color: var(--color-orange);
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li a:focus {
  color: var(--color-orange);
}
header .header-inner .navbar.navbar-expand-lg .collapse ul li.nav-item:hover > .dropdown-menu {
  display: block;
}
header .header-inner .navbar.navbar-expand-lg .collapse ul .dropdown-menu {
  transition: 0.3s all;
  max-width: 22rem;
  border-radius: 0px !important;
  border: none;
  box-shadow: 4px 10px 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul .dropdown-menu {
    padding-left: 0rem;
    background-color: transparent;
    box-shadow: none !important;
    margin-left: 0rem;
  }
  header .header-inner .navbar.navbar-expand-lg .collapse ul .dropdown-menu.submenu {
    overflow-y: scroll;
    height: 10rem;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse ul .dropdown-menu .dropdown-item {
  background-color: var(--color-white) !important;
  font-size: 1rem;
  white-space: unset;
}
@media screen and (max-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse ul .dropdown-menu .dropdown-item {
    padding-left: 0rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 991px) {
  header .header-inner .navbar.navbar-expand-lg .collapse {
    position: fixed;
    height: 100vh;
    width: 0;
    background: var(--color-white);
    top: 5rem;
    left: 0;
    right: 0;
    z-index: 99999;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    display: block;
  }
}
header .header-inner .navbar.navbar-expand-lg .collapse.active {
  padding: 0rem 1rem;
  opacity: 9 !important;
  visibility: visible !important;
  width: 100% !important;
}
header .header-inner .mobil-map {
  color: var(--color-black);
  margin-left: 0.3rem;
}

.banner {
  min-height: 85vh;
  width: 100%;
  position: relative;
  background-color: var(--color-gray);
}
@media screen and (max-width: 600px) {
  .banner {
    min-height: 50vh;
  }
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  min-height: 85vh;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .banner .swiper-slide {
    min-height: 60vh;
  }
}
.banner .swiper-slide::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.439);
  position: absolute;
}
.banner .swiper-slide::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/7.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 99;
}
.banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-text {
  color: var(--color-white);
  z-index: 99999;
}
.banner .banner-text h6 {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0rem;
}
@media screen and (max-width: 991px) {
  .banner .banner-text h6 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-text h6 {
    font-size: 0.8rem;
  }
}
.banner .banner-text h1 {
  font-size: 4.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .banner .banner-text h1 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 991px) {
  .banner .banner-text h1 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-text h1 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}
.banner .banner-text a {
  color: var(--color-white);
  background-color: var(--color-orange);
  font-size: 1rem;
  border-radius: 0.6rem 0.6rem 0.6rem 0.6rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.6rem 2rem;
  transition: 0.5s all;
}
.banner .banner-text a:hover {
  background-color: var(--color-light-gray);
  color: var(--color-orange);
}
@media screen and (max-width: 600px) {
  .banner .banner-text a {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}

.sub-banner {
  position: relative;
  z-index: 99;
  background-color: var(--color-gray) !important;
}
.sub-banner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.63);
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.sub-banner h2 {
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .sub-banner h2 {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 991px) {
  .sub-banner h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 600px) {
  .sub-banner h2 {
    font-size: 1.5rem;
  }
}
.sub-banner .links {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .sub-banner .links {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .sub-banner .links {
    font-size: 0.7rem;
  }
}
.sub-banner .links a {
  color: var(--color-white);
  transition: 0.3s all;
  padding: 0rem 0.4rem;
}
.sub-banner .links a:hover {
  color: var(--color-orange);
}

.about-us {
  padding: 5rem 0rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  .about-us {
    padding: 3rem 0rem;
  }
}
.about-us h2 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 991px) {
  .about-us h2 {
    margin-top: 1.5rem;
  }
}
.about-us .img-wrapper img {
  border-radius: 18px;
  height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .about-us .img-wrapper img {
    height: inherit;
  }
}
.about-us p {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .about-us p {
    font-size: 0.9rem;
  }
}

.we-contact {
  margin-top: -5rem;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 991px) {
  .we-contact {
    margin-top: 3rem;
  }
}
.we-contact .col-lg-4:nth-child(2n+1) .box {
  margin-top: -4rem;
}
@media screen and (max-width: 991px) {
  .we-contact .col-lg-4:nth-child(2n+1) .box {
    margin-top: 0rem;
  }
}
.we-contact .box {
  background: rgb(244, 130, 30);
  background: linear-gradient(29deg, rgb(244, 130, 30) 35%, rgb(250, 163, 93) 53%);
  max-width: 22rem;
  height: 12rem;
  position: relative;
  padding: 1.5rem;
  border-radius: 2rem;
}
@media screen and (max-width: 991px) {
  .we-contact .box {
    margin: 1.5rem 0rem !important;
  }
}
@media screen and (max-width: 600px) {
  .we-contact .box {
    height: 10rem;
  }
}
.we-contact .box .icon {
  position: absolute;
  top: -2rem;
  background: rgb(244, 130, 30);
  background: linear-gradient(29deg, rgb(244, 130, 30) 35%, rgb(250, 163, 93) 53%);
  padding: 1rem;
  border-radius: 50%;
  width: 5rem;
  font-size: 2rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .we-contact .box .icon {
    height: 4rem;
    width: 4rem;
    font-size: 1.2rem;
  }
}
.we-contact .box .icon i {
  color: var(--color-white);
}
.we-contact .box h6 {
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .we-contact .box h6 {
    font-size: 1rem;
  }
}
.we-contact .box a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s all;
}
.we-contact .box a:hover {
  text-decoration: underline;
}

.doctor-about {
  padding: 3rem 0rem;
  margin-top: 2rem;
}
@media screen and (max-width: 600px) {
  .doctor-about {
    padding: 2rem 0rem;
  }
}
.doctor-about h6 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.doctor-about h6 {
  color: var(--color-black);
}
.doctor-about h2 {
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--color-orange);
}
@media screen and (max-width: 1440px) {
  .doctor-about h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .doctor-about h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .doctor-about h2 {
    font-size: 1.4rem;
  }
}
.doctor-about .text {
  padding: 0rem 2rem;
}
@media screen and (max-width: 991px) {
  .doctor-about .text {
    padding: 0rem;
  }
}
.doctor-about .text h5 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 1440px) {
  .doctor-about .text h5 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1200px) {
  .doctor-about .text h5 {
    font-size: 1rem;
  }
}
.doctor-about .text p {
  font-size: 1rem;
  color: var(--color-gray);
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .doctor-about .text p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .doctor-about .text p {
    font-size: 0.8rem;
  }
}
.doctor-about .person_bio h4 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0rem;
}
@media screen and (max-width: 1200px) {
  .doctor-about .person_bio h4 {
    font-size: 1.5rem;
  }
}
.doctor-about .person_bio span {
  color: var(--color-orange);
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .doctor-about .person_bio span {
    font-size: 0.8rem;
  }
}
.doctor-about .person_bio .avatar {
  position: relative;
  display: inline-block;
}
.doctor-about .person_bio .avatar::before {
  content: "\f10e";
  font-family: FontAwesome;
  font-size: 32px;
  position: absolute;
  bottom: -10px;
  right: -7px;
  color: var(--color-orange);
}
.doctor-about .person_bio .avatar img {
  max-width: 5rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-about .widget-posts h3 {
  margin: 3rem 0rem 2rem 0rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .doctor-about .widget-posts h3 {
    font-size: 1.1rem;
  }
}
.doctor-about .widget-posts .last-blogs .box:hover i {
  color: var(--color-orange);
  margin-left: 0.5rem;
}
.doctor-about .widget-posts .last-blogs .box img {
  height: 4.5rem;
  width: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
.doctor-about .widget-posts .last-blogs .box i {
  transition: 0.3s all;
}
.doctor-about .widget-posts .last-blogs .box h5 {
  color: var(--color-black);
  font-size: 1rem;
  margin-top: 0.4rem;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .doctor-about .widget-posts .last-blogs .box h5 {
    font-size: 0.9rem;
  }
}
.doctor-about .widget-posts .last-blogs .box h5:hover {
  color: var(--color-orange);
}
.doctor-about .widget-posts .last-blogs .box span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-orange);
}
@media screen and (max-width: 1200px) {
  .doctor-about .widget-posts .last-blogs .box span {
    font-size: 0.8rem;
  }
}
.doctor-about .widget-posts .last-blogs h5 {
  font-weight: 400 !important;
}
.doctor-about .widget-posts .last-blogs .datetime {
  padding: 0.5rem 1rem;
  background-color: var(--color-orange);
  border-radius: 10px;
  margin-right: 1rem;
}
.doctor-about .widget-posts .last-blogs .datetime span {
  color: var(--color-white);
}
.doctor-about .widget-posts .last-blogs i {
  color: var(--color-black);
}
.doctor-about .widget-posts h3 {
  margin: 0;
  margin-bottom: 1.5rem;
}

.about {
  padding: 6rem 0rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 600px) {
  .about {
    padding: 2rem 0rem;
  }
}
.about h6 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.about h6 {
  color: var(--color-black) !important;
}
.about h2 {
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: var(--color-orange) !important;
}
@media screen and (max-width: 1440px) {
  .about h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .about h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .about h2 {
    font-size: 1.4rem;
  }
}
.about .box {
  padding: 1rem;
}
@media screen and (max-width: 600px) {
  .about .box {
    padding: 0.5rem;
  }
}
.about .box:hover h4 {
  color: var(--color-orange);
}
.about .box h4 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  transition: 0.3s all;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about .box h4 {
    font-size: 1rem;
  }
}
.about .box p {
  color: var(--color-gray);
  font-size: 0.9rem;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .about .box p {
    font-size: 0.8rem;
  }
}
.about .box i {
  margin-bottom: 1rem;
  color: var(--color-orange);
  font-size: 1.5rem;
}
.about .box .continue {
  color: var(--color-gray);
  font-size: 1rem;
}

.services {
  background-image: url(../img/ozelegitim-1000x630.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  /*   background-position: 50% -24px;
  background-attachment: fixed; */
  padding: 8rem 0rem;
  position: relative;
  z-index: 99;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .services {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 600px) {
  .services {
    padding: 2rem 0rem;
  }
}
.services:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.634);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.services h6 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.services h2 {
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--color-white) !important;
}
@media screen and (max-width: 1440px) {
  .services h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .services h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .services h2 {
    font-size: 1.4rem;
  }
}
.services .left-text {
  color: var(--color-white);
  font-weight: 300;
  font-size: 0.9rem;
}
@media screen and (max-width: 1200px) {
  .services .left-text {
    font-size: 0.8rem;
  }
}
.services .swiper {
  width: 100%;
  height: 100%;
}
.services .swiper-slide {
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  border-radius: 1.5rem;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .swiper-slide:hover .continue {
  visibility: visible;
  opacity: 9;
}
.services .swiper-slide .card {
  height: 100%;
  border: 0;
}
.services .swiper-slide .card .card-body {
  padding: 1.8rem;
}
.services .swiper-slide .card .card-body h5 {
  color: var(--color-black);
  font-size: 1.3rem;
  font-weight: 600;
}
.services .swiper-slide .card .card-body p {
  font-size: 0.9rem !important;
  color: var(--color-gray);
}
@media screen and (max-width: 1440px) {
  .services .swiper-slide .card .card-body p {
    font-size: 0.8rem !important;
  }
}
.services .swiper-slide .continue {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: 0;
  background-color: rgba(0, 0, 0, 0.519);
  transition: 0.3s all;
}
.services .swiper-slide .continue i {
  color: var(--color-orange);
  font-size: 3rem;
}
@media screen and (max-width: 1200px) {
  .services .swiper-slide h5 {
    font-size: 1.1rem !important;
  }
}
.services .swiper-slide img {
  display: block;
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}

#counter {
  padding: 5rem 0rem;
  position: relative;
}
#counter .box {
  background: rgb(244, 130, 30);
  background: linear-gradient(29deg, rgb(244, 130, 30) 35%, rgb(250, 163, 93) 53%);
  text-align: center;
  width: 100%;
  height: 10rem;
  padding: 2rem;
  box-shadow: 10px 10px 31px -17px rgba(0, 0, 0, 0.75);
  border-radius: 2rem 5rem;
}
#counter .box span {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color-white);
}
#counter .box p {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-white);
  font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-orange);
}

.blog {
  clear: both;
  background-image: url(../img/people-business-meeting-conference-hall.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  /*  background-position: 50% -24px;
  background-attachment: fixed; */
  padding: 8rem 0rem;
  position: relative;
  z-index: 99;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 600px) {
  .blog {
    padding: 2rem 0rem;
  }
}
.blog:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.634);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.blog h6 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.blog h2 {
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--color-white);
}
@media screen and (max-width: 1440px) {
  .blog h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .blog h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .blog h2 {
    font-size: 1.4rem;
  }
}
.blog .left-text {
  color: var(--color-white);
  font-weight: 300;
  font-size: 0.9rem;
}
@media screen and (max-width: 1200px) {
  .blog .left-text {
    font-size: 0.8rem;
  }
}
.blog .swiper {
  width: 100%;
  height: 100%;
}
.blog .swiper-slide {
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  border-radius: 1.5rem;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 0;
}
.blog .swiper-slide:hover .continue {
  visibility: visible;
  opacity: 9;
}
.blog .swiper-slide .card {
  height: 100%;
  border: 0;
}
.blog .swiper-slide .card .card-body {
  padding: 1.8rem;
}
.blog .swiper-slide .card .card-body h5 {
  color: var(--color-black);
  font-size: 1.3rem;
  font-weight: 600;
}
.blog .swiper-slide .card .card-body p {
  font-size: 0.9rem !important;
  color: var(--color-gray);
}
@media screen and (max-width: 1440px) {
  .blog .swiper-slide .card .card-body p {
    font-size: 0.8rem !important;
  }
}
.blog .swiper-slide .continue {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: 0;
  background-color: rgba(0, 0, 0, 0.519);
  transition: 0.3s all;
}
.blog .swiper-slide .continue i {
  color: var(--color-orange);
  font-size: 3rem;
}
.blog .swiper-slide .card-body {
  padding: 1rem 1.5rem;
  text-align: left;
}
.blog .swiper-slide .card-body span {
  color: var(--color-gray);
  margin-bottom: 0.4rem;
}
.blog .swiper-slide .card-body h5 {
  color: var(--color-black);
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: 600;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog .swiper-slide .card-body h5 {
    font-size: 1rem !important;
  }
}
.blog .swiper-slide .card-body .subject {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 1rem;
}
.blog .swiper-slide .card-body .date-time {
  font-size: 1rem;
}
@media screen and (max-width: 1440px) {
  .blog .swiper-slide .card-body .date-time {
    font-size: 0.9rem;
  }
}
.blog .swiper-slide img {
  display: block;
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list {
  padding: 5rem 0rem;
}
@media screen and (max-width: 991px) {
  .blog-list {
    padding: 3rem 0rem;
  }
}
.blog-list .widget-search {
  background-color: var(--color-orange);
  height: 15rem;
  border-radius: 10px;
  position: relative;
  z-index: 99;
  text-align: left;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-search {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-list .widget-search {
    margin-top: 1rem;
  }
}
.blog-list .widget-search h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-search h3 {
    font-size: 1.1rem;
  }
}
.blog-list .widget-search p {
  font-size: 1rem;
  color: var(--color-white);
}
@media screen and (max-width: 1440px) {
  .blog-list .widget-search p {
    font-size: 0.9rem;
  }
}
.blog-list .widget-search:before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 150px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: -1;
}
.blog-list .widget-search form {
  position: relative;
}
.blog-list .widget-search form .form-control:focus {
  box-shadow: none;
}
.blog-list .widget-search form .btn {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
}
.blog-list .widget-posts h3 {
  margin: 3rem 0rem 2rem 0rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-posts h3 {
    font-size: 1.1rem;
  }
}
.blog-list .widget-posts .last-blogs .box:hover i {
  color: var(--color-orange);
  margin-left: 0.5rem;
}
.blog-list .widget-posts .last-blogs .box img {
  height: 4.5rem;
  width: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
.blog-list .widget-posts .last-blogs .box i {
  transition: 0.3s all;
}
.blog-list .widget-posts .last-blogs .box h5 {
  color: var(--color-black);
  font-size: 1rem;
  margin-top: 0.4rem;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-posts .last-blogs .box h5 {
    font-size: 0.9rem;
  }
}
.blog-list .widget-posts .last-blogs .box h5:hover {
  color: var(--color-orange);
}
.blog-list .widget-posts .last-blogs .box span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-orange);
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-posts .last-blogs .box span {
    font-size: 0.8rem;
  }
}
.blog-list .widget-tags h3 {
  margin: 3rem 0rem 2rem 0rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
.blog-list .widget-tags .tag-clouds a {
  padding: 0.7rem 1.5rem;
  margin: 0 6px 10px 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  color: #1f232b;
  background-color: #f2f2f2;
  display: inline-block;
  border-radius: 10px;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog-list .widget-tags .tag-clouds a {
    font-size: 0.7rem;
  }
}
.blog-list .widget-tags .tag-clouds a:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.blog-list .item {
  margin-right: 2rem;
  background-color: #f2f2f2;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .blog-list .item {
    margin-right: 0rem;
  }
}
.blog-list .item .img-area {
  position: relative;
}
.blog-list .item .img-area img {
  border-radius: 10px;
  height: 35rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .blog-list .item .img-area img {
    height: 25rem;
  }
}
.blog-list .item .img-area .time-category {
  position: absolute;
  bottom: 0;
  background-color: rgba(31, 35, 43, 0.8);
  width: 100%;
  padding: 1rem 3rem;
}
@media screen and (max-width: 991px) {
  .blog-list .item .img-area .time-category {
    padding: 1rem 1.5rem;
  }
}
.blog-list .item .img-area .time-category .datetime {
  margin-right: 1.5rem;
}
.blog-list .item .img-area .time-category .datetime i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.blog-list .item .img-area .time-category .datetime span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .blog-list .item .img-area .time-category .datetime span {
    font-size: 0.8rem;
  }
}
.blog-list .item .img-area .time-category .category i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.blog-list .item .img-area .time-category .category span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .blog-list .item .img-area .time-category .category span {
    font-size: 0.8rem;
  }
}
.blog-list .item .text {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 991px) {
  .blog-list .item .text {
    padding: 2.5rem 1.5rem;
  }
}
.blog-list .item .text h2 {
  color: var(--color-orange);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .blog-list .item .text h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-list .item .text h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.blog-list .item .text p {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .blog-list .item .text p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 991px) {
  .blog-list .item .text p {
    font-size: 0.8rem;
  }
}
.blog-list .item a {
  color: var(--color-gray);
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .blog-list .item a {
    font-size: 0.8rem;
  }
}
.blog-list .item a:hover i {
  margin-left: 1rem;
}
.blog-list .item a i {
  margin-left: 0.5rem;
  transition: 0.3s all;
}

.blog-page {
  padding: 8rem 0rem;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  .blog-page {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-page {
    padding: 2rem 0rem;
  }
}
.blog-page .card {
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  border-radius: 1.5rem;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 0;
}
.blog-page .card:hover .continue {
  visibility: visible;
  opacity: 9;
}
.blog-page .card .card {
  height: 100%;
  border: 0;
}
.blog-page .card .card .card-body {
  padding: 1.8rem;
}
.blog-page .card .card .card-body h5 {
  color: var(--color-black);
  font-size: 1.3rem;
  font-weight: 600;
}
.blog-page .card .card .card-body p {
  font-size: 0.9rem !important;
  color: var(--color-gray);
}
@media screen and (max-width: 1440px) {
  .blog-page .card .card .card-body p {
    font-size: 0.8rem !important;
  }
}
.blog-page .card .continue {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: 0;
  background-color: rgba(0, 0, 0, 0.519);
  transition: 0.3s all;
}
.blog-page .card .continue i {
  color: var(--color-orange);
  font-size: 3rem;
}
.blog-page .card .card-body {
  padding: 1rem 1.5rem;
  text-align: left;
}
.blog-page .card .card-body span {
  color: var(--color-gray);
  margin-bottom: 0.4rem;
}
.blog-page .card .card-body h5 {
  color: var(--color-black);
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: 600;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog-page .card .card-body h5 {
    font-size: 1rem !important;
  }
}
.blog-page .card .card-body .subject {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 1rem;
}
.blog-page .card .card-body .date-time {
  font-size: 1rem;
}
@media screen and (max-width: 1440px) {
  .blog-page .card .card-body .date-time {
    font-size: 0.9rem;
  }
}
.blog-page .card .card-body {
  width: 100%;
  background-color: #F2F2F2;
  padding: 2rem;
}
.blog-page .card p {
  font-size: 1rem !important;
  color: var(--color-gray);
}
@media screen and (max-width: 1440px) {
  .blog-page .card p {
    font-size: 0.9rem !important;
  }
}
.blog-page .card img {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox-container {
  z-index: 99999999999999990000000000000000;
}

.gallery {
  min-width: 100%;
  padding: 2rem 0 4rem 0;
}
.gallery .swiper {
  width: 100%;
  height: 100%;
}
.gallery .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  border: none;
  outline: none;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .swiper .swiper-slide:focus-visible {
  outline: none !important;
}
.gallery .swiper .swiper-slide a {
  outline: none;
  border-radius: 2rem;
  overflow: hidden;
}
.gallery .swiper .swiper-slide a:focus-visible {
  outline: none;
}
.gallery .swiper .swiper-slide:hover .img-wrapper::before {
  visibility: visible;
  opacity: 9;
}
.gallery .swiper .swiper-slide .img-wrapper {
  position: relative;
  z-index: 99;
}
.gallery .swiper .swiper-slide .img-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.703);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
}
.gallery .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 17rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-detail {
  padding: 4rem 0rem;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 600px) {
  .blog-detail {
    padding: 2rem 0rem;
  }
}
.blog-detail .widget-search {
  background-color: var(--color-orange);
  height: 15rem;
  border-radius: 10px;
  position: relative;
  z-index: 99;
  text-align: left;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-search {
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-detail .widget-search {
    margin-top: 1rem;
  }
}
.blog-detail .widget-search h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-search h3 {
    font-size: 1.1rem;
  }
}
.blog-detail .widget-search p {
  font-size: 1rem;
  color: var(--color-white);
}
@media screen and (max-width: 1440px) {
  .blog-detail .widget-search p {
    font-size: 0.9rem;
  }
}
.blog-detail .widget-search:before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 150px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: -1;
}
.blog-detail .widget-search form {
  position: relative;
}
.blog-detail .widget-search form .form-control:focus {
  box-shadow: none;
}
.blog-detail .widget-search form .btn {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
}
.blog-detail .widget-posts h3 {
  margin: 3rem 0rem 2rem 0rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-posts h3 {
    font-size: 1.1rem;
  }
}
.blog-detail .widget-posts .last-blogs .box:hover i {
  color: var(--color-orange);
  margin-left: 0.5rem;
}
.blog-detail .widget-posts .last-blogs .box img {
  height: 4.5rem;
  width: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
.blog-detail .widget-posts .last-blogs .box i {
  transition: 0.3s all;
}
.blog-detail .widget-posts .last-blogs .box h5 {
  color: var(--color-black);
  font-size: 1rem;
  margin-top: 0.4rem;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-posts .last-blogs .box h5 {
    font-size: 0.9rem;
  }
}
.blog-detail .widget-posts .last-blogs .box h5:hover {
  color: var(--color-orange);
}
.blog-detail .widget-posts .last-blogs .box span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-orange);
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-posts .last-blogs .box span {
    font-size: 0.8rem;
  }
}
.blog-detail .widget-tags h3 {
  margin: 3rem 0rem 2rem 0rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
.blog-detail .widget-tags .tag-clouds a {
  padding: 0.7rem 1.5rem;
  margin: 0 6px 10px 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  color: #1f232b;
  background-color: #f2f2f2;
  display: inline-block;
  border-radius: 10px;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  .blog-detail .widget-tags .tag-clouds a {
    font-size: 0.7rem;
  }
}
.blog-detail .widget-tags .tag-clouds a:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.blog-detail .content {
  margin-right: 2rem;
  background-color: #f2f2f2;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .blog-detail .content {
    margin-right: 0rem;
  }
}
.blog-detail .content .img-area {
  position: relative;
}
.blog-detail .content .img-area img {
  border-radius: 10px;
  height: 35rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .blog-detail .content .img-area img {
    height: 25rem;
  }
}
.blog-detail .content .img-area .time-category {
  position: absolute;
  bottom: 0;
  background-color: rgba(31, 35, 43, 0.8);
  width: 100%;
  padding: 1rem 3rem;
}
@media screen and (max-width: 991px) {
  .blog-detail .content .img-area .time-category {
    padding: 1rem 1.5rem;
  }
}
.blog-detail .content .img-area .time-category .datetime {
  margin-right: 1.5rem;
}
.blog-detail .content .img-area .time-category .datetime i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.blog-detail .content .img-area .time-category .datetime span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .blog-detail .content .img-area .time-category .datetime span {
    font-size: 0.8rem;
  }
}
.blog-detail .content .img-area .time-category .category i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.blog-detail .content .img-area .time-category .category span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .blog-detail .content .img-area .time-category .category span {
    font-size: 0.8rem;
  }
}
.blog-detail .content .text {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 991px) {
  .blog-detail .content .text {
    padding: 2.5rem 1.5rem;
  }
}
.blog-detail .content .text h2 {
  color: var(--color-orange);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .blog-detail .content .text h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-detail .content .text h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.blog-detail .content .text p {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .blog-detail .content .text p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 991px) {
  .blog-detail .content .text p {
    font-size: 0.8rem;
  }
}

.services-list {
  padding: 5rem 0rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  .services-list {
    padding: 3rem 0rem;
  }
}
.services-list .item {
  background-color: var(--color-light-gray);
  border-radius: 10px;
}
.services-list .item .img-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0px 0px 10px;
}
@media screen and (max-width: 991px) {
  .services-list .item .img-wrapper img {
    border-radius: 10px 10px 0px 0px;
  }
}
@media screen and (min-width: 991px) {
  .services-list .item .col-lg-5 {
    padding-right: 0rem;
  }
}
@media screen and (min-width: 991px) {
  .services-list .item .col-lg-7 {
    padding-left: 0rem;
  }
}
.services-list .item .content {
  height: 17rem;
}
.services-list .item .content .content-top {
  background-color: #1f232b;
  padding: 0.7rem 2rem;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-top {
    padding: 0.7rem 1.5rem;
  }
}
.services-list .item .content .content-top .datetime {
  margin-right: 1.5rem;
}
.services-list .item .content .content-top .datetime i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.services-list .item .content .content-top .datetime span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-top .datetime span {
    font-size: 0.8rem;
  }
}
.services-list .item .content .content-top .category i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}
.services-list .item .content .content-top .category span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-top .category span {
    font-size: 0.8rem;
  }
}
.services-list .item .content .content-bottom {
  padding: 2rem 2rem 3rem 2rem;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-bottom {
    padding: 1.5rem;
  }
}
.services-list .item .content .content-bottom:hover a {
  color: var(--color-orange);
}
.services-list .item .content .content-bottom h3 {
  margin-bottom: 1rem;
}
.services-list .item .content .content-bottom h3 a {
  color: var(--color-black);
  font-weight: 600;
  transition: 0.3s all;
  font-size: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-bottom h3 a {
    font-size: 1.2rem;
  }
}
.services-list .item .content .content-bottom p {
  color: var(--color-gray);
  font-weight: 300;
  font-size: 1rem;
}
@media screen and (max-width: 1440px) {
  .services-list .item .content .content-bottom p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-bottom p {
    font-size: 0.8rem;
  }
}
.services-list .item .content .content-bottom a {
  color: var(--color-gray);
  font-size: 0.9rem;
  font-weight: 300;
}
.services-list .item .content .content-bottom a i {
  transition: 0.3s all;
}
.services-list .item .content .content-bottom a:hover i {
  margin-left: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .services-list .item .content .content-bottom a {
    font-size: 0.8rem;
  }
}

.service-detail {
  padding: 5rem 0rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  .service-detail {
    padding: 3rem 0rem;
  }
}
.service-detail h2 {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 991px) {
  .service-detail h2 {
    margin-top: 1.5rem;
  }
}
.service-detail ol,
.service-detail ul {
  padding-left: 0.7rem;
}
.service-detail ol li,
.service-detail ul li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0.5rem;
  color: var(--color-gray) !important;
  font-size: 0.9rem;
  font-weight: 300;
}
.service-detail ol li:before,
.service-detail ul li:before {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  left: -0.5rem;
  font-size: 0.8rem;
  color: var(--color-orange);
}
.service-detail .img-wrapper img {
  border-radius: 18px;
  height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .service-detail .img-wrapper img {
    height: inherit;
  }
}
.service-detail p {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .service-detail p {
    font-size: 0.9rem;
  }
}

.contact {
  position: relative;
  padding: 6rem 0rem;
}
@media screen and (max-width: 991px) {
  .contact {
    padding: 2rem 0rem;
  }
}
.contact span {
  margin-right: 0.5rem;
}
.contact i {
  color: var(--color-orange);
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
  .contact i {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .contact i {
    font-size: 1.6rem;
  }
}
.contact a,
.contact p {
  color: var(--color-gray);
  font-size: 1rem;
}
@media screen and (max-width: 1440px) {
  .contact a,
.contact p {
    font-size: 0.9rem;
  }
}
.contact p {
  max-width: 15rem;
  text-align: center;
}
.contact .form-area form .form-control {
  border-radius: 10px;
  resize: none;
  height: 50px;
  background-color: transparent;
  box-shadow: none;
  color: #1f232b;
  padding: 9px 20px 11px 20px;
  font-size: 1rem;
  line-height: 30px;
  font-weight: 400;
  border: 1px solid rgba(128, 128, 128, 0.5);
}
@media screen and (max-width: 991px) {
  .contact .form-area form .form-control {
    font-size: 0.9rem;
    height: 40px;
  }
}
.contact .form-area form .form-control:focus {
  box-shadow: none;
}
.contact .form-area form textarea {
  height: 15.6rem !important;
}
@media screen and (max-width: 991px) {
  .contact .form-area form textarea {
    height: 13.6rem !important;
  }
}
.contact .form-area form .btn {
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 35px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 10px;
  border: none;
  transition: all 0.4s linear 0s;
  z-index: 1;
  margin-top: 2rem;
}
.contact .form-area form .btn:hover {
  background-color: var(--color-dark-black);
}
@media screen and (max-width: 1440px) {
  .contact .form-area form .btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 991px) {
  .contact .form-area form .btn {
    padding: 15px 28px;
    font-size: 0.8rem;
  }
}

.page-item {
  margin: 0rem 0.3rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.page-item .page-link {
  color: var(--color-black);
  text-align: center;
  padding: 0;
  border: none;
  color: #808080;
  background-color: #f2f2f2;
  margin-left: 0;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 38px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px !important;
}
.page-item .page-link:focus {
  box-shadow: none;
  outline: none;
}

footer {
  background-color: var(--color-dark-black);
  padding-top: 4rem;
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 2rem;
  }
}
footer .img-wrapper img {
  max-width: 16rem;
}
@media screen and (max-width: 1200px) {
  footer .img-wrapper img {
    max-width: 10rem;
  }
}
footer .social-media {
  margin-top: 1.5rem;
}
@media screen and (max-width: 991px) {
  footer .social-media {
    margin-bottom: 1rem;
  }
}
footer .social-media li a {
  margin-right: 1.2rem;
  border: 1px solid var(--color-white);
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
footer .social-media li a:hover {
  border: 1px solid var(--color-orange);
}
@media screen and (max-width: 991px) {
  footer .social-media li a {
    height: 1.5rem;
    width: 1.5rem;
  }
}
footer .social-media li i {
  font-size: 0.7rem;
}
footer .col-md-4 {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-bottom: 2rem;
}
footer h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  footer h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
footer ul {
  padding-left: 0rem;
}
footer ul li a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 400;
  transition: 0.3s all;
}
@media screen and (max-width: 1200px) {
  footer ul li a {
    font-size: 0.8rem;
  }
}
footer ul li a:hover {
  color: var(--color-orange);
}
footer ul li .list-img {
  max-width: 5rem;
}
footer ul li span {
  text-align: left;
}
footer ul li span,
footer ul li p {
  padding-left: 0.5rem;
}
footer ul li p {
  font-size: 0.7rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}
footer ul li p:last-child {
  color: var(--color-orange);
}
footer ul.contact-list li {
  margin-bottom: 0.5rem;
}
footer ul.contact-list li a i {
  margin-right: 0.5rem;
}
footer .address {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  footer .address {
    font-size: 0.8rem;
  }
}
footer .copyright {
  padding: 1rem 0rem;
  border-top: 0.1px solid rgba(255, 255, 255, 0.509);
}
footer .copyright span {
  color: var(--color-white);
  font-size: 0.8rem;
}

.back-to-top {
  background-color: var(--color-orange);
  z-index: 999;
  height: 3rem;
  width: 3rem;
  color: var(--color-white);
  right: 2rem;
}
.back-to-top:hover, .back-to-top:focus {
  color: var(--color-white);
  box-shadow: none;
}

.map {
  height: 40vh;
  width: 100%;
  position: relative;
}

.map iframe {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}
/* ============ desktop view .end// ============ */
/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
}
/* ============ small devices .end// ============ *//*# sourceMappingURL=style.css.map */